home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_PLAIN.MSC < prev    next >
Encoding:
Text File  |  1986-08-28  |  1.5 KB  |  68 lines

  1. ;
  2. ;    Plain Pop-up Menu Configuration
  3. ;
  4. Comment('Configured for Plain (Generic) pop-up menus:')
  5. Comment(' ')
  6. Comment('   Left Button:    Pop-up menu with keys F1 thru F10, "/", and "?"')
  7. Comment('   Middle Button:  Enter key')
  8. Comment('   Right Button:   Esc key')
  9. Comment(' ')
  10.  
  11. ;
  12. ;    Parameters
  13. ;
  14. Sensitivity    (5, 8)        ; (Xinc, Yinc)
  15. Hysteresis    (2, 2)        ; (AutoX, AutoY)
  16. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  17. FixedMenu    (no)        ; Menu is in a fixed position
  18. EnableBeep    (Yes)        ; Beeps if wrong button pressed with menu up
  19.  
  20. ;
  21. ;    Cursor Definitions
  22. ;
  23. ArrowKeys: Cursor
  24. (
  25.     Left    ([Left])
  26.     Right    ([Right])
  27.     Up    ([Up])
  28.     Down    ([Down])
  29. )
  30.  
  31. ;
  32. ;    Button Definitions
  33. ;
  34. LBM:    Button    (Menu(Main))        ; Left button, Main Menu
  35. MB:    Button    (Keys([Enter]))     ; Middle button
  36. RB:    Button    (Keys([Esc]))        ; Right button
  37. ;
  38. ;    Menu Definitions
  39. ;
  40. Main: Menu
  41. (
  42.     Title    ("Main")
  43.     Item    ("F1",                  Keys([F1]))
  44.     Item    ("F2",                  Keys([F2]))
  45.     Item    ("F3",                  Keys([F3]))
  46.     Item    ("F4",                  Keys([F4]))
  47.     Item    ("F5",                  Keys([F5]))
  48.     Item    ("F6",                  Keys([F6]))
  49.     Item    ("F7",                  Keys([F7]))
  50.     Item    ("F8",                  Keys([F8]))
  51.     Item    ("F9",                  Keys([F9]))
  52.     Item    ("F10",                 Keys([F10]))
  53.     Item    ("/",                   Keys("/"))
  54.     Item    ("?",                   Keys("?"))
  55. )
  56.  
  57. ;
  58. ;    Mouse Definition
  59. ;
  60. Mouse
  61. (
  62.     Left    (LBM)
  63.     Middle    (MB)
  64.     LeftRight(MB)
  65.     Right    (RB)
  66.     Cursor    (ArrowKeys)
  67. )
  68.